@charset "utf-8";
html,
body,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
b,
i,
em,
s,
u,
dl,
dt,
dd,
ul,
ol,
li,
strong,
span,
table,th,tr,td,
img,
div,
form,fieldset,legend,
input,
button,
select,
option,
textarea,
label,
iframe {
margin: 0;
padding:0;
font-family: "Microsoft YaHei";

}
img{
  border: 0px;
}
a{
text-decoration: none;
}
ol,ul,li{
list-style: none;
}
html,body{
height: 100%;
}
textarea{ /* 文本域拉伸，根据需求而定 */
resize: none；
}
*{
  font-family: "Microsoft YaHei";
}
input,button,textarea{
outline: none;
}

img{
max-width: 100%;
width: auto\9;
-ms-interpolation-mode: bicubic;
border: 0px;
}
input,input[type=submit],
[type=reset],[type=button]{

resize: none;
}
/* 清楚浮动 */
.clear_fix::after{
content: " ";
display: block;
visibility: hidden;
height: 0;
clear: both;
}
/* 设置背景文字颜色 */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
color: #ccc;
}
/* 单行溢出 */
.spill{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 多行溢出 */
.spills{
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
}

/* 居中定宽 */
.centered_width{
  width: 1200px;
  margin: 0px auto;
}
/* 右浮动 */
.floatright{
  float: right;
}
/* 左浮动 */
.floatleft{
  float: left;
}
/* 阴影动画 */
.shadow{
  box-shadow:0px 3px 15px rgba(36,51,64,0.1);
  transition: 0.4s;
}
.shadow:hover{
  box-shadow:0px 6px 15px rgba(36,51,64,0.15);
}

/* 整体样式 */
.main {
  min-width: 1200px;
  width: 100%;
}
/* 悬停效果 */
.hover p{
  transition:  0.4s;
}
.hover p:hover{
  color: #226EBC !important;
  transform: translate(-4px,0px);
}
.hover p a:hover{
  color: #226EBC !important;
  transform: translate(-4px,0px);
}

/* 统一标题样式 */
.common_style_header{
  display: inline-block;
  width: 100%;
  padding-bottom: 0px;
  height: 50px;
  line-height: 50px;
  color: #616161;
  padding-left: 28px;
  border-bottom: 1px solid #E0E0E0;
}
.common_style_header li{
  display: inline-block;
  color: #999999;
  font-size: 18px;
}
.common_style_header span{
  font-size: 18px;
  color: #999999;
  padding: 0px 15px;
}
.common_style_header a{
  font-size: 18px;
  color: #999999;
}
.selection{
  position: relative;
}
 .selection a{
  color:#015293 !important;
  font-weight: bold !important;
} 
 .selection::before{
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #015293;
  position: absolute;
  bottom: 0px;
  left: 19px;
}